home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / BC++ Builder / DATA.Z / DOCSRC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-10  |  1.1 KB  |  26 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef DocSrcH
  7. #define DocSrcH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TDocSourceFrm : public TForm
  15. {
  16. __published:    // IDE-managed Components 
  17.     TMemo *Memo1;
  18. private:        // User declarations
  19. public:         // User declarations
  20.     virtual __fastcall TDocSourceFrm(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TDocSourceFrm *DocSourceFrm;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.